-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/fp 51 #90
Feature/fp 51 #90
Conversation
case .get: return HTTPMethod.get | ||
case .post: return HTTPMethod.post | ||
case .delete: return HTTPMethod.delete | ||
case .put: return HTTPMethod.put |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is HTTPMethod object required here? .get
etc is not enough?
} | ||
} | ||
} | ||
|
||
private extension ResourcesHandler { | ||
func generateONGResourceRequest(_ details: OWRequestDetails) -> ONGResourceRequest { | ||
Logger.log("generateONGResourceRequest", sender: self) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what happened to the logger?
@@ -24,52 +23,49 @@ class ResourcesHandler: FetchResourcesHandlerProtocol { | |||
} | |||
} | |||
|
|||
func authenticateUserImplicitly(_ profile: ONGUserProfile, scopes: [String]?, completion: @escaping (Result<Void, FlutterError>) -> Void) { | |||
Logger.log("authenticateImplicitly", sender: self) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what happened to the logger?
No description provided.